DataSource for Entity Framework in WPF
C1.Data Namespace / PagingView<T> Class / LoadSize Property

In This Topic
    LoadSize Property (PagingView<T>)
    In This Topic
    Gets or sets a value controling the number of entities to load in one batch.
    Syntax
    'Declaration
     
    Public Property LoadSize As Integer
    public int LoadSize {get; set;}
    Remarks
    Entities will be loaded using the multiple of PageSize nearest LoadSize. This allows multiple pages to be loaded at once without loading partial pages.
    See Also